home *** CD-ROM | disk | FTP | other *** search
- /*
- * DESQview/X Socket Library. Copyright (c) 1991 Quarterdeck Office Systems.
- *
- * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved. The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
- /* @(#)time.h */
-
- #ifndef __SYS_TIME_H__
- #define __SYS_TIME_H__
-
- #include <time.h>
-
- /*
- * Structure returned by gettimeofday(2) system call,
- * and used in other calls.
- */
- #if !defined(__NDPC__) || (defined(__NDPC__) && !defined(_OS_H))
-
- struct timeval {
- long tv_sec; /* seconds */
- long tv_usec; /* and microseconds */
- };
-
- struct timezone {
- int tz_minuteswest; /* minutes west of Greenwich */
- int tz_dsttime; /* type of dst correction */
- };
- #endif /* __NDPC__ */
-
- #endif /* __SYS_TIME_H__ */